!pr0
!lm12
!rm50
On CATALOG ARRANGER and RAM Card DOS

Chuck Welman just called to report some errors in the January piece on using CATALOG ARRANGER with a relocated DOS.  He says that the sentence about where to put the BIT MONREAD statements had problems.  Here's his corrected version:

"Then add BIT MONREAD at these positions:  Lines 1675, 3775, 3895, 3955, 4015 (".5" moved to this line), 4205 (".3" moved to this line, 4315, 4425, 4455 (".7" moved to this line), and 4895."

Chuck also passed along instructions for using FILENAME EDITOR with a RAM Card DOS.  Here are his additions:

!lm+5
2635 .3     BIT MONREAD
2640        JSR MON.BELL
2642        BIT DOSREAD
2644        BIT DOSREAD
2646        RTS
!lm-5

Thanks to all of you for showing your appreciation for these programs.





Quickie No. 6.....Bob Sander-Cederlof

Here is a little run-anywhere program sure to wake up the neighborhood dogs.  Put it in your program as a last resort to get attention, because the only escape is by RESET or power-off.

1000 ALARM  INY       INCREMENT DELAY TIME
1010        TYA
1020        TAX       DELAY COUNT TO X
1030        LDA $C030 TOGGLE SPEAKER
1040 .1     DEX       DELAY LOOP
1050        BNE .1
1060        BEQ ALARM ....FOREVER....

That's it, only eleven bytes!  For a slightly different effect, change the "DEX" in line 1030 to "INX".

